home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / OpenGL 1.0 SDK / Source / Libraries / tk / tkgetset.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  608 b   |  58 lines  |  [TEXT/CWIE]

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include "tk.h"
  5. #include "tkprivate.h"
  6.  
  7.  
  8. int tkGetColorMapSize(void)
  9. {
  10.     return 0;
  11. }
  12.  
  13.  
  14. void tkGetMouseLoc(int *x, int *y)
  15. {
  16.     Point mouseLoc;
  17.     
  18.     GetMouse(&mouseLoc);
  19.     
  20.     *x    = mouseLoc.h;
  21.     *y    = mouseLoc.v;
  22. }
  23.  
  24.  
  25. void tkGetSystem(GLenum sys, void *sys_ret)
  26. {
  27. }
  28.  
  29.  
  30. void tkSetFogRamp(int density, int startIndex)
  31. {
  32. }
  33.  
  34.  
  35. void tkSetGreyRamp(void)
  36. {
  37. }
  38.  
  39.  
  40. void tkSetOneColor(int index, float r, float g, float b)
  41. {
  42. }
  43.  
  44.  
  45. void tkSetOverlayMap(int size, float *rgb)
  46. {
  47. }
  48.  
  49.  
  50. void tkSetRGBMap(int size, float *rgb)
  51. {
  52. }
  53.  
  54.  
  55. GLenum tkSetWindowLevel(GLenum level)
  56. {
  57.     return 0;
  58. }